home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / desktop-base.prerm < prev    next >
Encoding:
Text File  |  2011-02-26  |  1.6 KB  |  46 lines

  1. #!/bin/sh -e
  2.  
  3.  
  4.  
  5. if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
  6.     # remove background alternatives
  7.     update-alternatives --remove desktop-background \
  8.         /usr/share/images/desktop-base/spacefun-wallpaper.svg
  9.  
  10.     update-alternatives --remove desktop-background \
  11.         /usr/share/images/desktop-base/spacefun-wallpaper-widescreen.svg
  12.  
  13.     update-alternatives --remove desktop-background \
  14.         /usr/share/images/desktop-base/moreblue-orbit-wallpaper.svg
  15.  
  16.     update-alternatives --remove desktop-background \
  17.         /usr/share/images/desktop-base/moreblue-orbit-wallpaper-widescreen.svg
  18.  
  19.     update-alternatives --remove desktop-background \
  20.         /usr/share/images/desktop-base/nightly-wallpaper.png
  21.  
  22.     update-alternatives --remove desktop-background \
  23.         /usr/share/images/desktop-base/debian-blueish-wallpaper.svg
  24.  
  25.     # remove splash alternatives
  26.     update-alternatives --remove desktop-splash \
  27.         /usr/share/images/desktop-base/spacefun-splash.svg
  28.  
  29.     update-alternatives --remove desktop-splash \
  30.         /usr/share/images/desktop-base/moreblue-orbit-splash.png
  31.  
  32.     update-alternatives --remove desktop-splash \
  33.         /usr/share/images/desktop-base/gnome-splash-curves.png
  34.  
  35.     # remove grub alternatives
  36.     update-alternatives --remove desktop-grub \
  37.         /usr/share/images/desktop-base/spacefun-grub.png
  38.  
  39.     update-alternatives --remove desktop-grub \
  40.         /usr/share/images/desktop-base/spacefun-grub-widescreen.png
  41.  
  42.     update-alternatives --remove desktop-grub \
  43.         /usr/share/images/desktop-base/moreblue-orbit-grub.png
  44. fi
  45.  
  46.